Clover coverage report - Enterprise Web Services - 1.0
Coverage timestamp: Mon May 30 2005 17:10:32 CEST
file stats: LOC: 107   Methods: 4
NCLOC: 59   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
WSDLOnlyClientSideWsGenerator.java 0% 0% 0% 0%
coverage
 1   
 /*
 2   
  * Copyright 2001-2004 The Apache Software Foundation.
 3   
  * 
 4   
  * Licensed under the Apache License, Version 2.0 (the "License");
 5   
  * you may not use this file except in compliance with the License.
 6   
  * You may obtain a copy of the License at
 7   
  * 
 8   
  *      http://www.apache.org/licenses/LICENSE-2.0
 9   
  * 
 10   
  * Unless required by applicable law or agreed to in writing, software
 11   
  * distributed under the License is distributed on an "AS IS" BASIS,
 12   
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13   
  * See the License for the specific language governing permissions and
 14   
  * limitations under the License.
 15   
  */
 16   
 
 17   
 package org.apache.geronimo.ews.ws4j2ee.toWs.ws;
 18   
 
 19   
 import org.apache.axis.wsdl.symbolTable.SymbolTable;
 20   
 import org.apache.axis.wsdl.toJava.Emitter;
 21   
 import org.apache.commons.logging.Log;
 22   
 import org.apache.commons.logging.LogFactory;
 23   
 import org.apache.geronimo.ews.ws4j2ee.context.J2EEWebServiceContext;
 24   
 import org.apache.geronimo.ews.ws4j2ee.toWs.GenerationFault;
 25   
 import org.apache.geronimo.ews.ws4j2ee.toWs.Generator;
 26   
 import org.apache.geronimo.ews.ws4j2ee.toWs.Ws4J2eeFactory;
 27   
 
 28   
 /**
 29   
  * <p>This genarated the Client side SEI and other classes required in the
 30   
  * Axis.</p>
 31   
  * * <h3>Service Endpoint Interface</h3>
 32   
  * <p>The JAX-RPC specification requires that a JAX-RPC service endpoint interface must
 33   
  * follow the following rules:</p>
 34   
  * <ol>
 35   
  * <li>Service endpoint interface must extend java.rmi.Remote either directly or indirectly</li>
 36   
  * <li>All methods in the interface must throw java.rmi.RemoteException. Methods may
 37   
  * throw service specific exceptions in addition to the RemoteException.</li>
 38   
  * <li>Method parameters and return types must be the JAX-RPC supported Java types
 39   
  * (refer to the section 5.1, �JAX-RPC Supported Java Types�). At runtime, values of a
 40   
  * supported Java type must be serializable to and from the corresponding XML
 41   
  * representation.
 42   
  * </li>
 43   
  * <li>Holder classes may be used as method parameters. These Holder classes are either
 44   
  * generated or those packaged in the standard javax.xml.rpc.holders package.</li>
 45   
  * <li>Service endpoint interface must not include constant (as public final static)
 46   
  * declarations. WSDL 1.1 specification does not define any standard representation for
 47   
  * constants in a wsdl:portType definition.</li>
 48   
  * </ol>
 49   
  *
 50   
  * @author Srinath Perera(hemapani@opensource.lk)
 51   
  */
 52   
 public class WSDLOnlyClientSideWsGenerator implements Generator {
 53   
     protected static Log log =
 54   
             LogFactory.getLog(ServerSideWsGenerator.class.getName());
 55   
     private J2EEWebServiceContext j2eewscontext;
 56   
     private Ws4J2eeFactory factory;
 57   
 
 58   
     private String wsdlfile;
 59   
     private String outputDir;
 60   
     private boolean verbose;
 61   
 
 62  0
     public WSDLOnlyClientSideWsGenerator(J2EEWebServiceContext j2eewscontext) throws GenerationFault {
 63  0
         this.j2eewscontext = j2eewscontext;
 64  0
         this.wsdlfile = j2eewscontext.getMiscInfo().getWsdlFile().fileName();
 65  0
         this.outputDir = j2eewscontext.getMiscInfo().getOutPutPath();
 66  0
         verbose = j2eewscontext.getMiscInfo().isVerbose();
 67  0
         factory = j2eewscontext.getFactory();
 68   
     }
 69   
 
 70  0
     public WSDLOnlyClientSideWsGenerator(String wsdlFile, String outputDir) throws GenerationFault {
 71  0
         this.wsdlfile = wsdlFile;
 72  0
         this.outputDir = outputDir;
 73   
     }
 74   
 
 75  0
     public void generate() throws GenerationFault {
 76  0
         try {
 77  0
             Emitter emitter = new Emitter();
 78  0
             if (verbose) {
 79  0
                 log.info("wsdl file = " + wsdlfile);
 80  0
                 log.info("calling the WSDL2Java >> ");
 81   
             }
 82  0
             emitter.setOutputDir(outputDir);
 83  0
             emitter.setServerSide(false);
 84  0
             emitter.setVerbose(verbose);
 85  0
             emitter.setHelperWanted(true);
 86  0
             emitter.setTestCaseWanted(true);
 87  0
             emitter.run(wsdlfile);
 88  0
             if (j2eewscontext != null) {
 89  0
                 SymbolTable axisSymboltable = emitter.getSymbolTable();
 90  0
                 j2eewscontext.setWSDLContext(factory.getContextFactory().createWSDLContext(axisSymboltable));
 91   
             }
 92   
         } catch (Exception e) {
 93  0
             e.printStackTrace();
 94  0
             throw GenerationFault.createGenerationFault(e);
 95   
         }
 96   
     }
 97   
 
 98  0
     public static void main(String[] args) throws GenerationFault {
 99  0
         if (args.length < 2) {
 100  0
             System.out.println("the input should be\n WSDLOnlyClientSideWsGenerator wsdlfile ourputdir");
 101   
         }
 102  0
         WSDLOnlyClientSideWsGenerator gen
 103   
                 = new WSDLOnlyClientSideWsGenerator(args[0], args[1]);
 104  0
         gen.generate();
 105   
     }
 106   
 }
 107